home *** CD-ROM | disk | FTP | other *** search
/ Steuer Profi 1997 / Steuer Profi 97.iso / haushaltsbuch v3.0 / rexx / hhb_test.hhb next >
Text File  |  1994-03-07  |  514b  |  39 lines

  1. /* HHB_Test.rexx
  2.  
  3.     (c) 1993 Jan Kautz
  4.  
  5.     This little Rexx-Prg shows some commands of HHB V3.0
  6. */
  7.  
  8. options results
  9.  
  10. address 'Haushalt.1'
  11.  
  12. GET DATAFILENAME
  13. say "Datendatei:" result
  14.  
  15. GET ACCOUNTFILENAME
  16. say "Kontendatei:" result
  17.  
  18. GET BALANCEFILENAME
  19. say "Bilanzdatei:" result
  20.  
  21. GET ACCOUNTNAME 2 4
  22. say "Name des Kontos 4/2:" result
  23.  
  24. GET NUMBEROFACCOUNTS
  25. say "Anzahl der Konten:" result
  26.  
  27. say "Buchungsliste:"
  28.  
  29. MOVE TOP
  30. GET ENTRY
  31. text = result
  32.  
  33. do while (text ~= "EOL")
  34.     say text
  35.     MOVE NEXT
  36.     GET ENTRY
  37.     text = result
  38. end
  39.